home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / IRepeaterClient.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  550 b   |  23 lines

  1. package mx.core
  2. {
  3.    public interface IRepeaterClient
  4.    {
  5.       function set instanceIndices(param1:Array) : void;
  6.       
  7.       function get isDocument() : Boolean;
  8.       
  9.       function get repeaters() : Array;
  10.       
  11.       function get instanceIndices() : Array;
  12.       
  13.       function set repeaters(param1:Array) : void;
  14.       
  15.       function initializeRepeaterArrays(param1:IRepeaterClient) : void;
  16.       
  17.       function set repeaterIndices(param1:Array) : void;
  18.       
  19.       function get repeaterIndices() : Array;
  20.    }
  21. }
  22.  
  23.